home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -screenplay- / otherstuff / jst_dev / installwizard / installer-parts / copy-osemu < prev    next >
Text File  |  1999-04-20  |  407b  |  24 lines

  1. ;; copy/update OS-Emu
  2.  
  3. (if (exists "C:OSEmu.400")
  4.  
  5. (set install_osemu
  6.     (askbool
  7.         (prompt    "Do you need to update OSEmu os emulation module?"
  8.             (help    "An outdated version of C:OSEmu.400 won't allow to run the game")
  9.             (choices "Update" "Leave")
  10.             (default 2)
  11.         )
  12.     )
  13. )
  14. (set install_osemu 1)
  15. )
  16.  
  17. (if (= 1 install_osemu)
  18.     (copyfiles (source "OSEmu.400")
  19.                (dest "C:")
  20.     )
  21. )
  22.  
  23. ;; end copy/update OSEmu
  24.